Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Lecture Formal methods in software engineering - Lecture 28
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Formal methods in software engineering - Lecture 28
Tân Long
101
29
pptx
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Lecture Formal methods in software engineering - Lecture 28 presents the following content: Functions, key search, binary search functions, program construction, constructing conditional statements, output variables, ghost variables, simultaneous assignment statements,. | 1 1 Formal Methods in Software Engineering Lecture # 28 1 1 1 2 2 2 2 2 3 3 Functions Find the index of the minimum value in a function First write pre and post condition and then proof You need to pass the size of the array to function Any Conditions on the input? There is no specific condition to apply on input Pre-condition: True i.e. Any array of integer with any size Post condition: ? 3 3 3 4 4 Functions Function min ( X: in INTEGER_ARRAY) Return INTEGER Pre: True Post: j in X’First X’Last : min (X) = X (j) and i in X’First X’Last: min (x) <= X (i) and X = X’’ 4 4 4 Ada programming syntax J is an index between the first and last index When this function is executed then is there any change in the array Min(x)- value return by the function i.e. It return value which is present in array at some index 5 5 Functions You need to specify that what would happen to the input array ( i.e. Any change after function execution) The returning value will be the small among all but also The return value exists in the given set Question: If any of the specification component missing then ? 5 5 5 6 6 Another example We have an array and we want to find a key and want to determine that key is present or not. If present then return index – If key is not present then message not found Pre-condition ( any condition on input)? No Condition Post condition? Need to answerer some questions (about input and output array: Do we make any changes in array so X = X’’ What about the key ( what is returning): Key found or not found. 6 6 6 7 7 Key search example Pre: True Post: (( found and X (index) = key ) or ( N NOT found and ( j in X’First X’Last : x (j) not equal key )) and ( X = X’’) 7 7 7 Found and theat is present at the index 8 8 Another example Suppose we have a sorting function then array would modified? You have noted that until now, no condition is imposed on input so the pre-condition is true Restriction on input: any case? If I want to apply . | 1 1 Formal Methods in Software Engineering Lecture # 28 1 1 1 2 2 2 2 2 3 3 Functions Find the index of the minimum value in a function First write pre and post condition and then proof You need to pass the size of the array to function Any Conditions on the input? There is no specific condition to apply on input Pre-condition: True i.e. Any array of integer with any size Post condition: ? 3 3 3 4 4 Functions Function min ( X: in INTEGER_ARRAY) Return INTEGER Pre: True Post: j in X’First X’Last : min (X) = X (j) and i in X’First X’Last: min (x) <= X (i) and X = X’’ 4 4 4 Ada programming syntax J is an index between the first and last index When this function is executed then is there any change in the array Min(x)- value return by the function i.e. It return value which is present in array at some index 5 5 Functions You need to specify that what would happen to the input array ( i.e. Any change after function execution) The returning value will be the small among .
TÀI LIỆU LIÊN QUAN
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.